home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac 1993 September / clonecd / September 93.img / Australasian Legends / Commercial / Golden Micro Solutions / Commander Demo / Commander Demo.rsrc / TEXT_5036_Before subselection.txt < prev    next >
Text File  |  1993-09-07  |  1KB  |  22 lines

  1. Before¬†subselection (subfile) -> Boolean
  2.                                                                                     Pg 44-8
  3.  
  4. subfile      Subfile    Subfile for which to test if pointer is before selection
  5.  
  6.                         
  7. Before subselection returns ¬†True when the current subrecord pointer is before the first subrecord of subfile. Before subselection is used to check whether PREVIOUS¬†SUBRECORD has moved the pointer before the first subrecord. If the current subselection is empty, Before subselection returns ¬†True.
  8.  
  9.  
  10. The following example is a script for a button. When the button is clicked, the pointer moves to the previous subrecord. If the pointer is before the first subrecord, it moves to the last subrecord:
  11.  
  12.          ` Move to the previous subrecord 
  13.   PREVIOUS SUBRECORD ([People]Children) ` If we have gone too far 
  14.   If (Before subselection ([People]Children) ` move to last subrecord
  15.        LAST SUBRECORD ([People]Children)
  16.   End if
  17.  
  18.  
  19.  
  20. See also:  Before¬†selection, LAST¬†SUBRECORD, PREVIOUS¬†SUBRECORD
  21.  
  22.